home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
26
/
3
/
DISK2631.ZIP
/
EXAMP1.ZIP
/
RMEX291.BAS
< prev
next >
Wrap
BASIC Source File
|
1990-04-03
|
266b
|
11 lines
' This loop reads data and displays it using
' PRINT and WRITE
FOR I% = 1 TO 3
READ words$, number%
PRINT "With PRINT: "; words$; number%
PRINT "With WRITE: ";
WRITE words$, number%
PRINT
NEXT I%
DATA " HELLO ",10 ," HOW ARE ",20 ," YOU ",30
END